home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ APIPA.xpl < prev    next >
Text File  |  2001-12-10  |  2KB  |  59 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Network\TCP/IP"
  5. "NAME"="AIPA (IP Address Searching)"
  6. "VERSION"="1.00"
  7. "OSVERSION"="001010"
  8. "LANGUAGE"="VBScript"
  9. "WARNING"="1"
  10. "TEXT 1"="Enable AIPA (Automatic IP Address Searching)"
  11. "DESCRIPTION 1"="By default, modern Windows versions have a feature called "APIPA". This feature allows a Windows system to find automatically an IP Adress without the need for manual configuration or a DHCP server."
  12. "DESCRIPTION 2"="The IP Addresses AIPA assignes are in the form 169.254.xxx.xxx."
  13. "DESCRIPTION 3"="If you do not want AIPA enabled, simply uncheck the box and restart."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="Thanks to c't !"
  18.  
  19.  
  20.  
  21.  
  22.  
  23. sV1="HKLM\System\CurrentControlSet\Services\VxD\DHCP\IPAutoConfigurationEnabled"
  24.  
  25. 'for W2K/XP:
  26. sV2_Find="HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Adapters"
  27. sV2="HKLM\System\CurrentControlSet\Services\TcpIP\Parameters\Interfaces\"
  28. sV2_b="\IPAutoConfigurationEnabled"
  29.  
  30.  
  31. Sub Plugin_Initialize 
  32.   i=RegReadValue(sV1)
  33.   if i=0 then 
  34.      SetUiElement 1,false
  35.   else
  36.      SetUiElement 1,true
  37.   end if
  38. End Sub
  39.  
  40. Sub Plugin_CheckData(ElementIndex)
  41. End Sub
  42.  
  43. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  44.  If GetUIElement(1)=true then
  45.     If RegValueExists(sV1) then Call RegeDeleteValue(sV1)
  46.  else
  47.     Call RegWriteValue(sv1,"0",2)
  48.  end if
  49.  
  50.  Restart
  51. End Sub
  52.  
  53.  
  54. Sub Plugin_Terminate 
  55. End Sub
  56.  
  57.  
  58.  
  59.